{% extends "base.html" %} {% block title %}Locations{% endblock %} {% block content %} {% block subnav %} {% include "subnav.html" %} {% endblock %} {% if session['role'] == 'manager' %}

Locations

{% elif session['role'] == 'admin' %}

Locations

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, msg in messages %}
{{ msg }}
{% endfor %} {% endif %} {% endwith %}

Add Location

Upload from CSV
Only .csv files are supported.
{% endif %}
{% set columns = [ ('location_id', 'ID'), ('name', 'Name'), ('address', 'Address'), ('city', 'City'), ('country', 'Country') ] %} {% for field, label in columns %} {% endfor %} {% if session['role'] == 'admin' %} {% endif %} {% for location in locations %} {% if session['role'] == 'admin' %} {% endif %} {% endfor %}
{{ label }} {% if sort == field %} {{ '↑' if direction == 'asc' else '↓' }} {% endif %} Actions
{{ location.location_id }} {{ location.name }} {{ location.address or '' }} {{ location.city or '' }} {{ location.country or '' }} Delete
{% endblock %}